home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 July: Mac OS SDK / Dev.CD Jul 97 SDK1.toast / Development Kits (Disc 1) / Interfaces&Libraries / Interfaces / PInterfaces / OSAComp.p < prev    next >
Encoding:
Text File  |  1995-07-06  |  1.7 KB  |  81 lines  |  [TEXT/MPS ]

  1. {
  2.      File:        OSAComp.p
  3.  
  4.      Contains:    AppleScript Component Implementor's Interfaces.
  5.  
  6.      Version:    Technology:    AppleScript 1.1
  7.                  Package:    Universal Interfaces 2.1 in “MPW Latest” on ETO #18
  8.  
  9.      Copyright:    © 1984-1995 by Apple Computer, Inc.
  10.                  All rights reserved.
  11.  
  12.      Bugs?:        If you find a problem with this file, use the Apple Bug Reporter
  13.                  stack.  Include the file and version information (from above)
  14.                  in the problem description and send to:
  15.                      Internet:    apple.bugs@applelink.apple.com
  16.                      AppleLink:    APPLE.BUGS
  17.  
  18. }
  19.  
  20. {$IFC UNDEFINED UsingIncludes}
  21. {$SETC UsingIncludes := 0}
  22. {$ENDC}
  23.  
  24. {$IFC NOT UsingIncludes}
  25.  UNIT OSAComp;
  26.  INTERFACE
  27. {$ENDC}
  28.  
  29. {$IFC UNDEFINED __OSACOMP__}
  30. {$SETC __OSACOMP__ := 1}
  31.  
  32. {$I+}
  33. {$SETC OSACompIncludes := UsingIncludes}
  34. {$SETC UsingIncludes := 1}
  35.  
  36.  
  37. {$IFC UNDEFINED __APPLEEVENTS__}
  38. {$I AppleEvents.p}
  39. {$ENDC}
  40. {    Errors.p                                                    }
  41. {        ConditionalMacros.p                                        }
  42. {    Types.p                                                        }
  43. {    Memory.p                                                    }
  44. {        MixedMode.p                                                }
  45. {    OSUtils.p                                                    }
  46. {    Events.p                                                    }
  47. {        Quickdraw.p                                                }
  48. {            QuickdrawText.p                                        }
  49. {    EPPC.p                                                        }
  50. {        AppleTalk.p                                                }
  51. {        Files.p                                                    }
  52. {            Finder.p                                            }
  53. {        PPCToolbox.p                                            }
  54. {        Processes.p                                                }
  55. {    Notification.p                                                }
  56.  
  57. {$IFC UNDEFINED __OSA__}
  58. {$I OSA.p}
  59. {$ENDC}
  60. {    AEObjects.p                                                    }
  61. {    Components.p                                                }
  62.  
  63. {$PUSH}
  64. {$ALIGN MAC68K}
  65. {$LibExport+}
  66.  
  67. FUNCTION OSAGetStorageType(scriptData: Handle; VAR dscType: DescType): OSErr;
  68. FUNCTION OSAAddStorageType(scriptData: Handle; dscType: DescType): OSErr;
  69. FUNCTION OSARemoveStorageType(scriptData: Handle): OSErr;
  70.  
  71. {$ALIGN RESET}
  72. {$POP}
  73.  
  74. {$SETC UsingIncludes := OSACompIncludes}
  75.  
  76. {$ENDC} {__OSACOMP__}
  77.  
  78. {$IFC NOT UsingIncludes}
  79.  END.
  80. {$ENDC}
  81.